home *** CD-ROM | disk | FTP | other *** search
- /*
- * For legal stuff see the file COPYRIGHT
- */
- #include <stdio.h>
- #import <objc/Object.h>
- #import "ClientInfo.h"
- #import "Session.h"
- #import "Expense.h"
-
- @interface Invoice : Object
- {
- int number; /* current invoice number */
- const char *date; /* current invoice date */
- ClientInfo *info; /* the current one being examined */
- Session *session; /* the current one being examined */
- Expense *expense; /* the current one being examined */
-
- char *templateDir;
- }
-
- - initTemplateDir:(const char *)dir;
- - (BOOL)editTemplate:(const char *)name;
-
- - (void)generate:(List *)clientList;
-
- @end
-